Autosys 文件观察器
我的任务: 需要在服务器 A 的特定目录中查找任何新的/更新的文件。一旦此目录上存在新的/修改的文件,我将需要将该文件 ftp 到服务器 B。
我可以使用 Autosys 和 shell 脚本来执行此操作吗?或者 Java 程序更适合这项任务?
如果我使用 Autosys,我可以设置文件观察器作业。成功后我可以触发另一项工作。但是这个作业怎么知道文件名呢?文件观察器是否足够聪明,可以将文件名作为参数传递给另一个作业?
请帮忙....
My Task :
Need to look for any new/updated files in particular directory of Server A. Once a file new/modified file is present on this directoty, I will need to ftp that file to Server B.
Can I do this with Autosys and shell scripts ? or will a Java program be more appropriate for this task ?
If I go with Autosys, I can setup a file watcher job. On success I can trigger another job. But how will this job know the file name ? Is file watcher smart enough to pass the file name as parameter to another job ?
Please help....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文件观察器作业用于检查文件是否存在并检查文件的大小。您必须提前知道文件的名称。在您的情况下,如果您可以收到任意数量的您事先不知道其名称的新文件,则文件监视程序作业将无法正常工作。
一种可行的解决方案是:
ls -l
并将其保存到文件The file watcher job is for checking the existence of a file and checking the size of it. You have to know the name of the file in advance. In your case if you can receive any number of new files whose names you don't know beforehand, the file watcher job is not going to work.
One plausible solution can be:
ls -l
of the directory you are watching and save it to a file一个)。 cd 到该目录
b).使用find命令查找所有文件,可以选择文件扩展名
在查找中,例如。 *.txt 或 *.csv。您也可以选择时间字段,如果您
想要检查不早于特定时间段的文件。
或者
在您的情况下,您可以维护文件的版本控制,一旦文件到达并被 find 命令找到,您可以重命名该文件。这样您可以确保您拥有要 ftp 的最新文件。
您可以通过在您不想拥有旧文件多少天后创建一个逻辑来存档或清除旧文件。
c).将find的输出发送到一个文件,测试该文件,如果它不为空.ftp该文件
到服务器 B。
文件到达的频率。
a). cd to that directory
b). use find command to find all the files,can choose the file extension
in find, for eg. *.txt or *.csv. You can opt for time field as well, if you
want to check for files which are not older than a certain period.
OR
In ur case u can maintain versioning of files,once the file comes and is found by the find command, u can rename the file.This way u can ensure u have the latest file to be ftp'ed.
You can archive or purge the old files, by creating a logic after how many days u don't want to have them.
c). Send the ouput of find to a file, test the file, if it is not empty.ftp that file
to server B.
frequency of the file arrival.