|
@@ -0,0 +1,22 @@
|
|
|
+import argparse
|
|
|
+import sys
|
|
|
+
|
|
|
+from hdfs import InsecureClient
|
|
|
+
|
|
|
+client = InsecureClient("http://master-1-1.c-7f31a3eea195cb73.cn-hangzhou.emr.aliyuncs.com")
|
|
|
+
|
|
|
+if __name__ == '__main__':
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ with client.read("/dw/recommend/model/34_ad_predict_data/20241004_351_0927_1003_1000/*",
|
|
|
+ encoding="utf-8") as reader:
|
|
|
+ content = reader.read()
|
|
|
+
|
|
|
+ print(content)
|