123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # -*- coding: utf-8 -*-
- # @Time : 2023/7/25
- # @Author : lkj
- # @description :
- import json
- milvus_config = {'db_name':'classify',
- 'host':"192.168.3.109",
- # 'host':'172.17.162.35',
- 'port':"19530"} # milvus 配置
- daili = '172.17.4.188:9090' # 服务代理中心172.17.4.188
- vector_url = 'http://192.168.3.109:19104/t2v'
- redis_config = {
- 'host':'192.168.3.109'
- ,'port':6379,
- 'db':1,
- 'pwd':'root'
- }
- mongo_input_path = {
- # "port": "192.168.3.71:29099",
- "user":"JSYJZ_RWBidAi_ProG",
- "password":"JSLi@20LiefK3d",
- "db": "qfw",
- "col": "bidding",
- # "db": "re4art",
- # "col": "china_good_classify_test",
- }
- # mongo_input_path2 = {
- # "port": "192.168.3.71:29099",
- # # "user":"JSYJZ_RWBidAi_ProG",
- # # "password":"JSLi@20LiefK3d",
- # "db": "re4art",
- # "col": "goods_count2",
- # }
- mysql_path2 = {
- # 'mysql_host': '172.17.46.46',
- # 'mysql_host': '192.168.3.206',
- 'mysql_user': 'root',
- 'mysql_password': 'Topnet123_jycms',
- # 'mysql_password': '123456',
- 'mysql_db': 'Call_Accounting',
- # 'mysql_db': 'jy',
- 'mysql_port': '3376',
- # 'mysql_port': '3306'
- }
- mysql_path = {
- # 'mysql_host': '172.17.4.242',
- 'mysql_host': '192.168.3.14',
- # 'mysql_host': '127.0.0.1',
- # 'mysql_user': 'liukangjia',
- 'mysql_user': 'root',
- # 'mysql_password': 'Lkj#20230630N',
- 'mysql_password': '=PDT49#80Z!RVv52_z',
- # 'mysql_password': '123456',
- # 'mysql_db': 'Call_Accounting',
- 'mysql_db': 'lkj',
- 'mysql_port': '4000',
- # 'mysql_port': '3306'
- }
- #
|