Advertisement
egslava

Parser Config

Sep 18th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.97 KB | None | 0 0
  1. #####   logic  #####
  2. numPlayers: 4
  3. year: 2010
  4.  
  5. #####  logging #####
  6. logLevel: INFO # ALL/DEBUG/ERROR/TRACE/WARN/INFO/FATAL/OFF
  7. showSql: false
  8.  
  9. ####  networking ###
  10. numThreads: 1    # how much threads do we use? (it should be equals to proxy count)
  11. numAttempts: 5    # if URL loading is failed. How many times we should try to load it again?
  12. numProxyAttempts: 5 # num of attempts before proxy will be marked as banned (is increased every time when 403 or timeout)
  13.  
  14. delay:     # in millisecs
  15.   min: 1000
  16.   max: 3000
  17.  
  18. proxies:
  19. - 196.196.92.237:80:myprox:z121212
  20.  - 89.32.178.139:80:myprox:z121212
  21.  - 165.231.83.182:80:myprox:z121212
  22.  - 151.237.181.211:80:myprox:z121212
  23.  - 89.46.252.214:80:myprox:z121212
  24.  - 188.211.162.171:80:myprox:z121212
  25.  - 89.32.122.124:80:myprox:z121212
  26.  - 94.242.208.175:80:myprox:z121212
  27.  - 89.32.122.113:80:myprox:z121212
  28.  - 188.211.163.189:80:myprox:z121212
  29.  - 77.81.95.139:80:myprox:z121212
  30.  - 178.216.50.116:80:myprox:z121212
  31.  - 89.46.89.168:80:myprox:z121212
  32.  - 46.166.145.184:80:myprox:z121212
  33. #
  34. # - 188.211.162.126:80:myprox:z121212
  35. # - 46.102.99.254:80:myprox:z121212
  36. # - 89.46.252.242:80:myprox:z121212
  37. # - 89.32.122.123:80:myprox:z121212
  38. # - 92.114.6.31:80:myprox:z121212
  39. # - 185.3.132.129:80:myprox:z121212
  40. # - 176.119.28.238:80:myprox:z121212
  41. # - 176.61.138.127:80:myprox:z121212
  42. # - 93.115.135.31:80:myprox:z121212
  43. # - 82.211.58.71:80:myprox:z121212
  44.  
  45. #####      DBs   ######
  46. columns:
  47.  id:           ID
  48.  playerId:     PLAYER_ID
  49.  attribute1:   ATTRIBUTE_1
  50.  attribute2:   ATTRIBUTE_2
  51.  attribute3:   ATTRIBUTE_3
  52.  attribute4:   ATTRIBUTE_4
  53.  attribute5:   ATTRIBUTE_5
  54.  attribute6:   ATTRIBUTE_6
  55.  clubId:       CLUB_ID
  56.  commonName:   COMMON_NAME
  57.  dateOfBirth:  DATE_OF_BIRTH
  58.  firstName:    FIRST_NAME
  59.  height:       HEIGHT
  60.  itemType:     ITEM_TYPE
  61.  lastName:     LAST_NAME
  62.  leagueId:     LEAGUE_ID
  63.  nationId:     NATION_ID
  64.  preferredFoot: PREFERRED_FOOT
  65.  rare:         RARE
  66.  rating:       RATING
  67.  
  68. dbs:
  69.  - year: 2010
  70.    url: jdbc:mysql://127.0.0.1:3306/db2010?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&nullNamePatternMatchesAll=true
  71.    user: root
  72.  
  73.  - year: 2011
  74.    url: jdbc:mysql://localhost:3306/db2011?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&nullNamePatternMatchesAll=true
  75.    user: root
  76.  
  77.  - year: 2012
  78.    url: jdbc:mysql://localhost:3306/db2012?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&nullNamePatternMatchesAll=true
  79.    user: root
  80.  
  81.  - year: 2013
  82.    url: jdbc:mysql://localhost:3306/db2013?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&nullNamePatternMatchesAll=true
  83.    user: root
  84.  
  85.  - year: 2014
  86.    url: jdbc:mysql://localhost:3306/db2014?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&nullNamePatternMatchesAll=true
  87.    user: root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement