# Q: 实时作业-创建的模型:关系型数据源-HiveSink,保存后运行模型报错:Miss <Sink> config! Please check the config file。
# A:查看dws后台日志中是否有如下报错信息
出现上述报错,原因是hive-site.xml配置文件中未配置hive.metastore.uris
属性信息。
解决办法:
步骤1.在hive-site.xml配置文件中增加配置如下,node1.primeton.com
为hive元数据所在服务器。
<property>
<name>hive.metastore.uris</name>
<value>thrift://node1.primeton.com:9083</value>
</property>
步骤2. 在存算引擎管理页面hive引擎,重新上传上述hive-site.xml文件。