def finish_handle(self):

        filepath = os.path.join(settings.FILEPATH, "corehq", "pillows", "mappings", "reportcase_mapping.py")
        casepillow = ReportCasePillow(create_index=False)

        # current index
        # check current index
        aliased_indices = casepillow.check_alias()

        current_index = casepillow.es_index

        sys.stderr.write("current index:\n")
        sys.stderr.write('REPORT_CASE_INDEX="%s"\n' % current_index)

        # regenerate the mapping dict
        mapping = reportcase_mapping.REPORT_CASE_MAPPING
        casepillow.default_mapping = mapping
        delattr(casepillow, "_calc_meta_cache")
        calc_index = "%s_%s" % (casepillow.es_index_prefix, casepillow.calc_meta())

        if calc_index not in aliased_indices and calc_index != current_index:
            sys.stderr.write("\n\tWarning, current index %s is not aliased at the moment\n" % current_index)
            sys.stderr.write("\tCurrent live aliased index: %s\n\n" % (",".join(aliased_indices)))

        if calc_index != current_index:
            sys.stderr.write(
                "REPORT_CASE_INDEX hash has changed, please update \n\t%s\n\tREPORT_CASE_INDEX property with the line below:\n"
                % filepath
            )
            sys.stdout.write('REPORT_CASE_INDEX="%s"\n' % calc_index)
        else:
            sys.stderr.write("REPORT_CASE_INDEX unchanged\n")
    def finish_handle(self):

        filepath = os.path.join(settings.FILEPATH, 'corehq','pillows','mappings','reportcase_mapping.py')
        casepillow = ReportCasePillow(create_index=False)

        #current index
        #check current index
        aliased_indices = casepillow.check_alias()

#        current_index = '%s_%s' % (casepillow.es_index_prefix, casepillow.calc_meta())
        current_index = casepillow.es_index

        #regenerate the mapping dict
        m = DEFAULT_MAPPING_WRAPPER
        m['dynamic'] = True
        m['ignore_malformed'] = True
        m['properties'] = dynamic.set_properties(self.doc_class, custom_types=case_special_types, nested_types=case_nested_types, dynamic=True)
        m['dynamic_templates'] = [dynamic.everything_is_dict_template]

        m['_meta']['comment'] = "Autogenerated [%s] mapping from ptop_generate_mapping %s" % (self.doc_class_str, datetime.utcnow().strftime('%m/%d/%Y'))

        casepillow.default_mapping = m
        delattr(casepillow, '_calc_meta_cache')
        output = []
        output.append('REPORT_CASE_INDEX="%s_%s"' % (casepillow.es_index_prefix, casepillow.calc_meta()))
        output.append('REPORT_CASE_MAPPING=%s' % pprint.pformat(m))
        newcalc_index = "%s_%s" % (casepillow.es_index_prefix, casepillow.calc_meta())
        print "Writing new case_index and mapping: %s" % output[0]
        with open(filepath, 'w') as outfile:
            outfile.write('\n'.join(output))

        if newcalc_index not in aliased_indices and newcalc_index != current_index:
            sys.stderr.write("\n\tWarning, current index %s is not aliased at the moment\n" % current_index)
            sys.stderr.write("\tCurrent live aliased index: %s\n\n"  % (','.join(aliased_indices)))

        sys.stderr.write("File written to %s\n" % filepath)
Exemplo n.º 3
0
    def finish_handle(self):

        filepath = os.path.join(settings.FILEPATH, 'corehq', 'pillows',
                                'mappings', 'reportcase_mapping.py')
        casepillow = ReportCasePillow(create_index=False)

        #current index
        #check current index
        aliased_indices = casepillow.check_alias()

        current_index = casepillow.es_index

        sys.stderr.write("current index:\n")
        sys.stderr.write('REPORT_CASE_INDEX="%s"\n' % current_index)

        #regenerate the mapping dict
        mapping = reportcase_mapping.REPORT_CASE_MAPPING
        casepillow.default_mapping = mapping
        delattr(casepillow, '_calc_meta_cache')
        calc_index = "%s_%s" % (casepillow.es_index_prefix,
                                casepillow.calc_meta())

        if calc_index not in aliased_indices and calc_index != current_index:
            sys.stderr.write(
                "\n\tWarning, current index %s is not aliased at the moment\n"
                % current_index)
            sys.stderr.write("\tCurrent live aliased index: %s\n\n" %
                             (','.join(aliased_indices)))

        if calc_index != current_index:
            sys.stderr.write(
                "REPORT_CASE_INDEX hash has changed, please update \n\t%s\n\tREPORT_CASE_INDEX property with the line below:\n"
                % filepath)
            sys.stdout.write('REPORT_CASE_INDEX="%s"\n' % calc_index)
        else:
            sys.stderr.write("REPORT_CASE_INDEX unchanged\n")