您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章给大家分享的是有关Hive与es数据如何导入和导出的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
<dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch-hadoop</artifactId> <version>6.6.2</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency>
create external table charge_current_frequency_es ( province string, vehicleType string, vin string, chargeType string, chargeCurrentFrequency array<bigint>, statis_time string ) STORED BY 'org.elasticsearch.hadoop.hive.EsStorageHandler' location '/warningplatform.db/ads/charge_current_frequency_es' TBLPROPERTIES ('es.resource' = 'charge_current_frequency/charge_current_frequency', 'es.mapping.names' = 'province:province,vehicleType:vehicleType,vin:vin,chargeType:chargeType,chargeCurrentFrequency:chargeCurrentFrequency,statis_time:time', 'es.nodes' = '192.168.11.29', 'es.port' = '9200' );
指定hive与es字段的匹配规则
hive中的string可以写入es的date类型,格式可以是yyyy-MM-dd HH:mm:ss,但是hive读取es数据的时候,不能以string类型去接收es中date类型且格式为yyyy-MM-dd HH:mm:ss的字段。
对hive的插入和查询,即为对es索引的插入和查询。
感谢各位的阅读!关于“Hive与es数据如何导入和导出”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。