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)'- 探している2つの用語の周りに空白と追加の括弧がないことに注意してください
'ip1 | ip2'
'(ip1|ip2)'