def main(argv, _db_rw=None, _redis_client=None): # pragma: no cover parser = argparse.ArgumentParser(prog=argv[0], description='Load/import cell data.') parser.add_argument('--datatype', default='ocid', help='Type of the data file, e.g. ocid') parser.add_argument('--filename', help='Path to the gzipped csv file.') args = parser.parse_args(argv[1:]) if not args.filename: parser.print_help() sys.exit(1) filename = os.path.abspath(args.filename) if not os.path.isfile(filename): print('File not found.') sys.exit(1) datatype = args.datatype if datatype not in ('cell', 'ocid'): print('Unknown data type.') sys.exit(1) configure_logging() app_config = read_config() db = configure_db(app_config.get('database', 'rw_url'), _db=_db_rw) redis_client = configure_redis(app_config.get('cache', 'cache_url'), _client=_redis_client) load_file(db, redis_client, datatype, filename)
def main(argv, _db_rw=None, _redis_client=None): # pragma: no cover parser = argparse.ArgumentParser( prog=argv[0], description='Load/import cell data.') parser.add_argument('--datatype', default='ocid', help='Type of the data file, cell or ocid') parser.add_argument('--filename', help='Path to the gzipped csv file.') args = parser.parse_args(argv[1:]) if not args.filename: parser.print_help() sys.exit(1) filename = os.path.abspath(args.filename) if not os.path.isfile(filename): print('File not found.') sys.exit(1) datatype = args.datatype if datatype not in ('cell', 'ocid'): print('Unknown data type.') sys.exit(1) configure_logging() app_config = read_config() db = configure_db(app_config.get('database', 'rw_url'), _db=_db_rw) redis_client = configure_redis( app_config.get('cache', 'cache_url'), _client=_redis_client) load_file(db, redis_client, datatype, filename)
def init_worker(celery_app, app_config, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): """ Configure the passed in celery app, usually stored in :data:`ichnaea.async.app.celery_app`. Does connection, settings and queue setup. Attaches some additional functionality to the :class:`celery.Celery` instance. This is executed inside each forked worker process. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param _db_ro: Ignored, read-only database connection isn't used. """ # make config file settings available celery_app.settings = app_config.asdict() # configure outside connections celery_app.db_rw = configure_db(app_config.get('database', 'rw_url'), _db=_db_rw) celery_app.raven_client = raven_client = configure_raven( app_config.get('sentry', 'dsn'), transport='threaded', _client=_raven_client) celery_app.redis_client = redis_client = configure_redis( app_config.get('cache', 'cache_url'), _client=_redis_client) celery_app.stats_client = configure_stats(app_config, _client=_stats_client) celery_app.geoip_db = configure_geoip(app_config.get('geoip', 'db_path'), raven_client=raven_client, _client=_geoip_db) # configure data / export queues celery_app.all_queues = all_queues = set([q.name for q in CELERY_QUEUES]) celery_app.data_queues = data_queues = configure_data(redis_client) for queue in data_queues.values(): if queue.monitor_name: all_queues.add(queue.monitor_name) celery_app.export_queues = configure_export(redis_client, app_config) for queue in celery_app.export_queues.values(): if queue.monitor_name: all_queues.add(queue.monitor_name)
def init_worker( celery_app, app_config, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None, ): """ Configure the passed in celery app, usually stored in :data:`ichnaea.async.app.celery_app`. Does connection, settings and queue setup. Attaches some additional functionality to the :class:`celery.Celery` instance. This is executed inside each forked worker process. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param _db_ro: Ignored, read-only database connection isn't used. """ # make config file settings available celery_app.settings = app_config.asdict() # configure outside connections celery_app.db_rw = configure_db(app_config.get("ichnaea", "db_master"), _db=_db_rw) celery_app.raven_client = raven_client = configure_raven( app_config.get("ichnaea", "sentry_dsn"), transport="threaded", _client=_raven_client ) celery_app.redis_client = redis_client = configure_redis( app_config.get("ichnaea", "redis_url"), _client=_redis_client ) celery_app.stats_client = configure_stats(app_config.get("ichnaea", "statsd_host"), _client=_stats_client) celery_app.geoip_db = configure_geoip( app_config.get("ichnaea", "geoip_db_path"), raven_client=raven_client, _client=_geoip_db ) # configure data / export queues celery_app.all_queues = all_queues = set([q.name for q in CELERY_QUEUES]) celery_app.data_queues = data_queues = configure_data(redis_client) for queue in data_queues.values(): if queue.monitor_name: all_queues.add(queue.monitor_name) celery_app.export_queues = configure_export(redis_client, app_config) for queue in celery_app.export_queues.values(): if queue.monitor_name: all_queues.add(queue.monitor_name)
def init_worker(celery_app, app_config, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): # currently neither a db_ro nor geoip_db are set up # make config file settings available celery_app.settings = app_config.asdict() # configure data / export queues celery_app.all_queues = all_queues = set([q.name for q in CELERY_QUEUES]) celery_app.data_queues = data_queues = { 'cell_area_update': 'update_cell_lac', } for value in data_queues.values(): all_queues.add(value) celery_app.export_queues = export_queues = {} for section_name in app_config.sections(): if section_name.startswith('export:'): section = app_config.get_map(section_name) name = section_name.split(':')[1] queue_name = EXPORT_QUEUE_PREFIX + name export_queues[name] = { 'redis_key': queue_name, } all_queues.add(queue_name) for key, value in section.items(): if key == 'batch': export_queues[name][key] = int(value) else: export_queues[name][key] = value # configure outside connections celery_app.db_rw = configure_db(app_config.get('ichnaea', 'db_master'), _db=_db_rw) celery_app.raven_client = configure_raven(app_config.get( 'ichnaea', 'sentry_dsn'), transport='threaded', _client=_raven_client) celery_app.redis_client = configure_redis(app_config.get( 'ichnaea', 'redis_url'), _client=_redis_client) celery_app.stats_client = configure_stats(app_config.get( 'ichnaea', 'statsd_host'), _client=_stats_client)
def main(global_config, app_config, init=False, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): configure_logging() # make config file settings available config = Configurator(settings=app_config.asdict()) # add support for pt templates config.include('pyramid_chameleon') configure_content(config) configure_service(config) # configure outside connections registry = config.registry registry.db_rw = configure_db( app_config.get('ichnaea', 'db_master'), _db=_db_rw) registry.db_ro = configure_db( app_config.get('ichnaea', 'db_slave'), _db=_db_ro) registry.raven_client = raven_client = configure_raven( app_config.get('ichnaea', 'sentry_dsn'), transport='gevent', _client=_raven_client) registry.redis_client = configure_redis( app_config.get('ichnaea', 'redis_url'), _client=_redis_client) registry.stats_client = configure_stats( app_config.get('ichnaea', 'statsd_host'), _client=_stats_client) registry.geoip_db = configure_geoip( app_config.get('ichnaea', 'geoip_db_path'), raven_client=raven_client, _client=_geoip_db) config.add_tween('ichnaea.db.db_tween_factory', under=EXCVIEW) config.add_tween('ichnaea.log.log_tween_factory', under=EXCVIEW) config.add_request_method(db_rw_session, property=True) config.add_request_method(db_ro_session, property=True) # replace json renderer with custom json variant config.add_renderer('json', customjson.Renderer()) # Should we try to initialize and establish the outbound connections? if init: # pragma: no cover registry.db_ro.ping() registry.redis_client.ping() registry.stats_client.ping() return config.make_wsgi_app()
def init_worker(celery_app, app_config, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): # currently neither a db_ro nor geoip_db are set up # make config file settings available celery_app.settings = app_config.asdict() # configure data / export queues celery_app.all_queues = all_queues = set([q.name for q in CELERY_QUEUES]) celery_app.data_queues = data_queues = { 'cell_area_update': 'update_cell_lac', } for value in data_queues.values(): all_queues.add(value) celery_app.export_queues = export_queues = {} for section_name in app_config.sections(): if section_name.startswith('export:'): section = app_config.get_map(section_name) name = section_name.split(':')[1] queue_name = EXPORT_QUEUE_PREFIX + name export_queues[name] = { 'redis_key': queue_name, } all_queues.add(queue_name) for key, value in section.items(): if key == 'batch': export_queues[name][key] = int(value) else: export_queues[name][key] = value # configure outside connections celery_app.db_rw = configure_db( app_config.get('ichnaea', 'db_master'), _db=_db_rw) celery_app.raven_client = configure_raven( app_config.get('ichnaea', 'sentry_dsn'), _client=_raven_client) celery_app.redis_client = configure_redis( app_config.get('ichnaea', 'redis_url'), _client=_redis_client) celery_app.stats_client = configure_stats( app_config.get('ichnaea', 'statsd_host'), _client=_stats_client)
def init_worker(celery_app, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): """ Configure the passed in celery app, usually stored in :data:`ichnaea.async.app.celery_app`. Does connection, settings and queue setup. Attaches some additional functionality to the :class:`celery.Celery` instance. This is executed inside each forked worker process. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param _db_ro: Ignored, read-only database connection isn't used. """ # configure outside connections celery_app.db_rw = configure_db( celery_app.app_config.get('database', 'rw_url'), _db=_db_rw) celery_app.raven_client = raven_client = configure_raven( celery_app.app_config.get('sentry', 'dsn'), transport='threaded', _client=_raven_client) celery_app.redis_client = redis_client = configure_redis( celery_app.app_config.get('cache', 'cache_url'), _client=_redis_client) celery_app.stats_client = configure_stats( celery_app.app_config, _client=_stats_client) celery_app.geoip_db = configure_geoip( celery_app.app_config.get('geoip', 'db_path'), raven_client=raven_client, _client=_geoip_db) # configure data queues celery_app.all_queues = all_queues = set([q.name for q in CELERY_QUEUES]) celery_app.data_queues = data_queues = configure_data(redis_client) all_queues = all_queues.union( set([queue.key for queue in data_queues.values() if queue.key]))
def broken_app(self, http_session, raven): # Create database connections to the discard port. db = configure_db("rw", uri="mysql+pymysql://none:[email protected]:9/none") # Create a broken GeoIP database. geoip_db = GeoIPNull() # Create a broken Redis client. redis_client = configure_redis("redis://127.0.0.1:9/15") app = _make_app( _db=db, _geoip_db=geoip_db, _http_session=http_session, _raven_client=raven, _redis_client=redis_client, ) yield app db.close() geoip_db.close() redis_client.close()
def init_worker(celery_app, _db=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): """ Configure the passed in celery app, usually stored in :data:`ichnaea.async.app.celery_app`. Does connection, settings and queue setup. Attaches some additional functionality to the :class:`celery.Celery` instance. This is executed inside each forked worker process. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. """ # configure outside connections celery_app.db = configure_db('rw', _db=_db) celery_app.raven_client = raven_client = configure_raven( transport='threaded', _client=_raven_client) celery_app.redis_client = redis_client = configure_redis( _client=_redis_client) celery_app.stats_client = configure_stats(_client=_stats_client) celery_app.geoip_db = configure_geoip(raven_client=raven_client, _client=_geoip_db) # configure data queues celery_app.all_queues = all_queues = set([q.name for q in TASK_QUEUES]) celery_app.data_queues = data_queues = configure_data(redis_client) all_queues = all_queues.union( set([queue.key for queue in data_queues.values() if queue.key]))
def init_worker(celery_app, app_config, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): # currently db_ro is not set up # make config file settings available celery_app.settings = app_config.asdict() # configure outside connections celery_app.db_rw = configure_db( app_config.get('ichnaea', 'db_master'), _db=_db_rw) celery_app.raven_client = raven_client = configure_raven( app_config.get('ichnaea', 'sentry_dsn'), transport='threaded', _client=_raven_client) celery_app.redis_client = redis_client = configure_redis( app_config.get('ichnaea', 'redis_url'), _client=_redis_client) celery_app.stats_client = configure_stats( app_config.get('ichnaea', 'statsd_host'), _client=_stats_client) celery_app.geoip_db = configure_geoip( app_config.get('ichnaea', 'geoip_db_path'), raven_client=raven_client, _client=_geoip_db) # configure data / export queues celery_app.all_queues = all_queues = set([q.name for q in CELERY_QUEUES]) celery_app.data_queues = data_queues = configure_data(redis_client) for queue in data_queues.values(): if queue.monitor_name: all_queues.add(queue.monitor_name) celery_app.export_queues = configure_export(redis_client, app_config) for queue in celery_app.export_queues.values(): if queue.monitor_name: all_queues.add(queue.monitor_name)
def broken_app(self, http_session, raven, stats): # Create database connections to the discard port. db = configure_db(uri='mysql+pymysql://none:[email protected]:9/none') # Create a broken GeoIP database. geoip_db = GeoIPNull() # Create a broken Redis client. redis_client = configure_redis('redis://127.0.0.1:9/15') app = _make_app( _db=db, _geoip_db=geoip_db, _http_session=http_session, _raven_client=raven, _redis_client=redis_client, _stats_client=stats, ) yield app db.close() geoip_db.close() redis_client.close()
def redis_client(): redis_client = configure_redis(REDIS_URI) yield redis_client redis_client.close()
def _make_redis(uri=REDIS_URI): return configure_redis(uri)
def main(global_config, app_config, init=False, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): configure_logging() # make config file settings available config = Configurator(settings=app_config.asdict()) # add support for pt templates config.include('pyramid_chameleon') configure_content(config) configure_service(config) # configure outside connections registry = config.registry registry.db_rw = configure_db(app_config.get('ichnaea', 'db_master'), _db=_db_rw) registry.db_ro = configure_db(app_config.get('ichnaea', 'db_slave'), _db=_db_ro) registry.raven_client = raven_client = configure_raven( app_config.get('ichnaea', 'sentry_dsn'), transport='gevent', _client=_raven_client) registry.redis_client = configure_redis(app_config.get( 'ichnaea', 'redis_url'), _client=_redis_client) registry.stats_client = configure_stats(app_config.get( 'ichnaea', 'statsd_host'), _client=_stats_client) registry.geoip_db = configure_geoip(app_config.get('ichnaea', 'geoip_db_path'), raven_client=raven_client, _client=_geoip_db) config.add_tween('ichnaea.db.db_tween_factory', under=EXCVIEW) config.add_tween('ichnaea.log.log_tween_factory', under=EXCVIEW) config.add_request_method(db_rw_session, property=True) config.add_request_method(db_ro_session, property=True) # replace json renderer with custom json variant config.add_renderer('json', customjson.Renderer()) # Should we try to initialize and establish the outbound connections? if init: # pragma: no cover registry.db_ro.ping() registry.redis_client.ping() registry.stats_client.ping() return config.make_wsgi_app()
def main( ping_connections=False, _db=None, _geoip_db=None, _http_session=None, _raven_client=None, _redis_client=None, _position_searcher=None, _region_searcher=None, ): """ Configure the web app stored in :data:`ichnaea.webapp.app._APP`. Does connection, logging and view config setup. Attaches some additional functionality to the :class:`pyramid.registry.Registry` instance. At startup ping all outbound connections like the database once, to ensure they are actually up and responding. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param ping_connections: If True, ping and test outside connections. :type ping_connections: bool :returns: A configured WSGI app, the result of calling :meth:`pyramid.config.Configurator.make_wsgi_app`. """ configure_logging() config = Configurator() check_config() # add support for pt templates config.include("pyramid_chameleon") # add a config setting to skip logging for some views config.registry.skip_logging = set() configure_api(config) configure_content(config) configure_monitor(config) # configure outside connections registry = config.registry registry.db = configure_db("ro", _db=_db) registry.raven_client = raven_client = configure_raven( transport="gevent", tags={"app": "webapp"}, _client=_raven_client ) registry.redis_client = redis_client = configure_redis(_client=_redis_client) configure_stats() registry.http_session = configure_http_session(_session=_http_session) registry.geoip_db = geoip_db = configure_geoip( raven_client=raven_client, _client=_geoip_db ) # Needs to be the exact same as the *_incoming entries in taskapp.config. registry.data_queues = data_queues = { "update_incoming": DataQueue( "update_incoming", redis_client, "report", batch=100, compress=True ) } for name, func, default in ( ("position_searcher", configure_position_searcher, _position_searcher), ("region_searcher", configure_region_searcher, _region_searcher), ): searcher = func( geoip_db=geoip_db, raven_client=raven_client, redis_client=redis_client, data_queues=data_queues, _searcher=default, ) setattr(registry, name, searcher) config.add_tween("ichnaea.db.db_tween_factory", under=EXCVIEW) config.add_tween("ichnaea.log.log_tween_factory", under=EXCVIEW) config.add_request_method(db_session, property=True) # freeze skip logging set config.registry.skip_logging = frozenset(config.registry.skip_logging) # Should we try to initialize and establish the outbound connections? if ping_connections: with db_worker_session(registry.db, commit=False) as session: ping_session(session) registry.redis_client.ping() return config.make_wsgi_app()
def redis_client(): redis_client = configure_redis() yield redis_client redis_client.close()
def main(app_config, ping_connections=False, _db_rw=None, _db_ro=None, _geoip_db=None, _http_session=None, _raven_client=None, _redis_client=None, _stats_client=None, _position_searcher=None, _region_searcher=None): """ Configure the web app stored in :data:`ichnaea.webapp.app._APP`. Does connection, logging and view config setup. Attaches some additional functionality to the :class:`pyramid.registry.Registry` instance. At startup ping all outbound connections like the database once, to ensure they are actually up and responding. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param app_config: The parsed application ini. :type app_config: :class:`ichnaea.config.Config` :param ping_connections: If True, ping and test outside connections. :type ping_connections: bool :returns: A configured WSGI app, the result of calling :meth:`pyramid.config.Configurator.make_wsgi_app`. """ configure_logging() # make config file settings available config = Configurator(settings=app_config.asdict()) # add support for pt templates config.include('pyramid_chameleon') # add a config setting to skip logging for some views config.registry.skip_logging = set() configure_api(config) configure_content(config) configure_monitor(config) # configure outside connections registry = config.registry registry.db_rw = configure_db( app_config.get('database', 'rw_url'), _db=_db_rw) registry.db_ro = configure_db( app_config.get('database', 'ro_url'), _db=_db_ro) registry.raven_client = raven_client = configure_raven( app_config.get('sentry', 'dsn'), transport='gevent', _client=_raven_client) registry.redis_client = redis_client = configure_redis( app_config.get('cache', 'cache_url'), _client=_redis_client) registry.stats_client = stats_client = configure_stats( app_config, _client=_stats_client) registry.http_session = configure_http_session(_session=_http_session) registry.geoip_db = geoip_db = configure_geoip( app_config.get('geoip', 'db_path'), raven_client=raven_client, _client=_geoip_db) for name, func, default in (('position_searcher', configure_position_searcher, _position_searcher), ('region_searcher', configure_region_searcher, _region_searcher)): searcher = func(app_config, geoip_db=geoip_db, raven_client=raven_client, redis_client=redis_client, stats_client=stats_client, _searcher=default) setattr(registry, name, searcher) config.add_tween('ichnaea.db.db_tween_factory', under=EXCVIEW) config.add_tween('ichnaea.log.log_tween_factory', under=EXCVIEW) config.add_request_method(db_ro_session, property=True) # Add special JSON renderer with nicer float representation config.add_renderer('floatjson', floatjson.FloatJSONRenderer()) # Add text-as-JS renderer. config.add_renderer('js', renderers.JSRenderer()) # freeze skip logging set config.registry.skip_logging = frozenset(config.registry.skip_logging) # Should we try to initialize and establish the outbound connections? if ping_connections: # pragma: no cover registry.db_ro.ping() registry.redis_client.ping() return config.make_wsgi_app()
def main(app_config, ping_connections=False, _db_rw=None, _db_ro=None, _geoip_db=None, _http_session=None, _raven_client=None, _redis_client=None, _stats_client=None, _country_searcher=None, _position_searcher=None): """ Configure the web app stored in :data:`ichnaea.webapp.app._APP`. Does connection, logging and view config setup. Attaches some additional functionality to the :class:`pyramid.registry.Registry` instance. At startup ping all outbound connections like the database once, to ensure they are actually up and responding. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param app_config: The parsed application ini. :type app_config: :class:`ichnaea.config.Config` :param ping_connections: If True, ping and test outside connections. :type ping_connections: bool :returns: A configured WSGI app, the result of calling :meth:`pyramid.config.Configurator.make_wsgi_app`. """ configure_logging() # make config file settings available config = Configurator(settings=app_config.asdict()) # add support for pt templates config.include('pyramid_chameleon') # add a config setting to skip logging for some views config.registry.skip_logging = set() configure_api(config) configure_content(config) configure_monitor(config) # configure outside connections registry = config.registry registry.db_rw = configure_db( app_config.get('database', 'rw_url'), _db=_db_rw) registry.db_ro = configure_db( app_config.get('database', 'ro_url'), _db=_db_ro) registry.raven_client = raven_client = configure_raven( app_config.get('sentry', 'dsn'), transport='gevent', _client=_raven_client) registry.redis_client = redis_client = configure_redis( app_config.get('cache', 'cache_url'), _client=_redis_client) registry.stats_client = stats_client = configure_stats( app_config, _client=_stats_client) registry.http_session = configure_http_session(_session=_http_session) registry.geoip_db = geoip_db = configure_geoip( app_config.get('geoip', 'db_path'), raven_client=raven_client, _client=_geoip_db) for name, func, default in (('country_searcher', configure_country_searcher, _country_searcher), ('position_searcher', configure_position_searcher, _position_searcher)): searcher = func(app_config, geoip_db=geoip_db, raven_client=raven_client, redis_client=redis_client, stats_client=stats_client, _searcher=default) setattr(registry, name, searcher) config.add_tween('ichnaea.db.db_tween_factory', under=EXCVIEW) config.add_tween('ichnaea.log.log_tween_factory', under=EXCVIEW) config.add_request_method(db_rw_session, property=True) config.add_request_method(db_ro_session, property=True) # Add special JSON renderer with nicer float representation config.add_renderer('floatjson', floatjson.FloatJSONRenderer()) # freeze skip logging set config.registry.skip_logging = frozenset(config.registry.skip_logging) # Should we try to initialize and establish the outbound connections? if ping_connections: # pragma: no cover registry.db_ro.ping() registry.redis_client.ping() return config.make_wsgi_app()
def main(app_config, ping_connections=False, _db_rw=None, _db_ro=None, _geoip_db=None, _raven_client=None, _redis_client=None, _stats_client=None): """ Configure the web app stored in :data:`ichnaea.webapp.app._APP`. Does connection, logging and view config setup. Attaches some additional functionality to the :class:`pyramid.registry.Registry` instance. At startup ping all outbound connections like the database once, to ensure they are actually up and responding. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param app_config: The parsed application ini. :type app_config: :class:`ichnaea.config.Config` :param ping_connections: If True, ping and test outside connections. :type ping_connections: bool :returns: A configured WSGI app, the result of calling :meth:`pyramid.config.Configurator.make_wsgi_app`. """ configure_logging() # make config file settings available config = Configurator(settings=app_config.asdict()) # add support for pt templates config.include('pyramid_chameleon') configure_api(config) configure_content(config) configure_monitor(config) # configure outside connections registry = config.registry registry.db_rw = configure_db( app_config.get('ichnaea', 'db_master'), _db=_db_rw) registry.db_ro = configure_db( app_config.get('ichnaea', 'db_slave'), _db=_db_ro) registry.raven_client = raven_client = configure_raven( app_config.get('ichnaea', 'sentry_dsn'), transport='gevent', _client=_raven_client) registry.redis_client = configure_redis( app_config.get('ichnaea', 'redis_url'), _client=_redis_client) registry.stats_client = configure_stats( app_config.get('ichnaea', 'statsd_host'), _client=_stats_client) registry.geoip_db = configure_geoip( app_config.get('ichnaea', 'geoip_db_path'), raven_client=raven_client, _client=_geoip_db) config.add_tween('ichnaea.db.db_tween_factory', under=EXCVIEW) config.add_tween('ichnaea.log.log_tween_factory', under=EXCVIEW) config.add_request_method(db_rw_session, property=True) config.add_request_method(db_ro_session, property=True) # replace json renderer with custom json variant config.add_renderer('json', customjson.Renderer()) # Should we try to initialize and establish the outbound connections? if ping_connections: # pragma: no cover registry.db_ro.ping() registry.redis_client.ping() registry.stats_client.ping() return config.make_wsgi_app()
def main(ping_connections=False, _db=None, _geoip_db=None, _http_session=None, _raven_client=None, _redis_client=None, _stats_client=None, _position_searcher=None, _region_searcher=None): """ Configure the web app stored in :data:`ichnaea.webapp.app._APP`. Does connection, logging and view config setup. Attaches some additional functionality to the :class:`pyramid.registry.Registry` instance. At startup ping all outbound connections like the database once, to ensure they are actually up and responding. The parameters starting with an underscore are test-only hooks to provide pre-configured connection objects. :param ping_connections: If True, ping and test outside connections. :type ping_connections: bool :returns: A configured WSGI app, the result of calling :meth:`pyramid.config.Configurator.make_wsgi_app`. """ configure_logging() config = Configurator() # add support for pt templates config.include('pyramid_chameleon') # add a config setting to skip logging for some views config.registry.skip_logging = set() configure_api(config) configure_content(config) configure_monitor(config) # configure outside connections registry = config.registry registry.db = configure_db('ro', _db=_db) registry.raven_client = raven_client = configure_raven( transport='gevent', _client=_raven_client) registry.redis_client = redis_client = configure_redis( _client=_redis_client) registry.stats_client = stats_client = configure_stats( _client=_stats_client) registry.http_session = configure_http_session(_session=_http_session) registry.geoip_db = geoip_db = configure_geoip( raven_client=raven_client, _client=_geoip_db) # Needs to be the exact same as the *_incoming entries in async.config. registry.data_queues = data_queues = { 'update_incoming': DataQueue('update_incoming', redis_client, batch=100, compress=True), } for name, func, default in (('position_searcher', configure_position_searcher, _position_searcher), ('region_searcher', configure_region_searcher, _region_searcher)): searcher = func(geoip_db=geoip_db, raven_client=raven_client, redis_client=redis_client, stats_client=stats_client, data_queues=data_queues, _searcher=default) setattr(registry, name, searcher) config.add_tween('ichnaea.db.db_tween_factory', under=EXCVIEW) config.add_tween('ichnaea.log.log_tween_factory', under=EXCVIEW) config.add_request_method(db_session, property=True) # freeze skip logging set config.registry.skip_logging = frozenset(config.registry.skip_logging) # Should we try to initialize and establish the outbound connections? if ping_connections: # pragma: no cover registry.db.ping() registry.redis_client.ping() return config.make_wsgi_app()