Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用嵌入在示例 jar 文件中的 hadoop grep 程序。
hadoop jar /usr/lib/hadoop/hadoop-examples.jar grep /user/tavasthi/log /user/tavasthi/log_result_output 'ip1 | ip2'
但结果是错误的。我的目的是搜索出现 ip1 或 ip2 的记录。
请建议。
感谢你在期待!塔班
您的正则表达式很可能是错误的:'ip1 | ip2'应该是'(ip1|ip2)'- 注意您正在寻找的两个术语周围缺少空格和额外的括号
'ip1 | ip2'
'(ip1|ip2)'