support oracle v12 in ottertune server

This commit is contained in:
DongshengYang
2019-10-03 18:19:41 -04:00
committed by Dana Van Aken
parent 494b23678e
commit 8743c0c2b1
14 changed files with 59908 additions and 26456 deletions

View File

@@ -158,7 +158,7 @@ def set_field(fields):
def main():
final_metrics = []
with open('oracle.txt', 'r') as f:
with open('oracle12.txt', 'r') as f:
num = 0
lines = f.readlines()
@@ -186,7 +186,7 @@ def main():
elif num == 2:
fields['summary'] = line
fields['scope'] = 'global'
fields['dbms'] = 18 # oracle
fields['dbms'] = 12 # oracle
fields['category'] = ''
fields['enumvals'] = None
fields['context'] = ''
@@ -201,9 +201,9 @@ def main():
entry['fields'] = fields
final_metrics.append(entry)
num = (num + 1) % 3
with open('oracle_knobs.json', 'w') as f:
with open('oracle-12_knobs.json', 'w') as f:
json.dump(final_metrics, f, indent=4)
shutil.copy("oracle_knobs.json", "../../../../website/fixtures/oracle_knobs.json")
shutil.copy("oracle-12_knobs.json", "../../../../website/fixtures/oracle-12_knobs.json")
if __name__ == '__main__':

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,7 @@ import shutil
def main():
final_metrics = []
with open('oracle.txt', 'r') as f:
with open('oracle12.txt', 'r') as f:
odd = 0
entry = {}
fields = {}
@@ -31,12 +31,12 @@ def main():
fields['metric_type'] = 3 # stat
if fields['name'] == "global.user commits":
fields['metric_type'] = 1 # counter
fields['dbms'] = 18 # oracle
fields['dbms'] = 12 # oracle
entry['fields'] = fields
final_metrics.append(entry)
with open('oracle_metrics.json', 'w') as f:
with open('oracle-12_metrics.json', 'w') as f:
json.dump(final_metrics, f, indent=4)
shutil.copy('oracle_metrics.json', '../../../../website/fixtures/oracle_metrics.json')
shutil.copy('oracle-12_metrics.json', '../../../../website/fixtures/oracle-12_metrics.json')
if __name__ == '__main__':

File diff suppressed because it is too large Load Diff