Source code for mars.services.meta.api.web

# Copyright 1999-2021 Alibaba Group Holding Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Dict, List, Optional

from .... import oscar as mo
from ....lib.aio import alru_cache
from ....utils import serialize_serializable, deserialize_serializable
from ...web import web_api, MarsServiceWebAPIHandler, MarsWebAPIClientMixin
from .core import AbstractMetaAPI


class MetaWebAPIHandler(MarsServiceWebAPIHandler):
    _root_pattern = '/api/session/(?P<session_id>[^/]+)/meta'

    @alru_cache(cache_exceptions=False)
    async def _get_cluster_api(self):
        from ...cluster import ClusterAPI
        return await ClusterAPI.create(self._supervisor_addr)

    @alru_cache(cache_exceptions=False)
    async def _get_oscar_meta_api(self, session_id: str):
        from .oscar import MetaAPI
        cluster_api = await self._get_cluster_api()
        [address] = await cluster_api.get_supervisors_by_keys([session_id])
        return await MetaAPI.create(session_id, address)

    @web_api('(?P<data_key>[^/]+)', method='get')
    async def get_chunk_meta(self, session_id: str, data_key: str):
        fields_str = self.get_argument('fields', None)
        error = self.get_argument('error', 'raise')
        fields = fields_str.split(',') if fields_str else None

        oscar_api = await self._get_oscar_meta_api(session_id)
        result = await oscar_api.get_chunk_meta(data_key, fields=fields, error=error)
        self.write(serialize_serializable(result))


web_handlers = {
    MetaWebAPIHandler.get_root_pattern(): MetaWebAPIHandler
}


[docs]class WebMetaAPI(AbstractMetaAPI, MarsWebAPIClientMixin):
[docs] def __init__(self, session_id: str, address: str): self._session_id = session_id self._address = address.rstrip('/')
@mo.extensible async def get_chunk_meta(self, object_id: str, fields: List[str] = None, error: str = 'raise') -> Optional[Dict]: params = dict(error=error) req_addr = f'{self._address}/api/session/{self._session_id}/meta/{object_id}' if fields: params['fields'] = ','.join(fields) res = await self._request_url('GET', req_addr, params=params) return deserialize_serializable(await res.read())