-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tsonglew <[email protected]>
- Loading branch information
Showing
9 changed files
with
267 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
# | ||
import asyncio | ||
from typing import Optional | ||
|
||
|
||
sampling_service = None | ||
|
||
|
||
def init(force: bool = False): | ||
""" | ||
If the sampling service is not initialized, initialize it. | ||
if force, we are in a fork(), we force re-initialization | ||
""" | ||
from skywalking.sampling.sampling_service import SamplingService | ||
from skywalking.log import logger | ||
|
||
global sampling_service | ||
if sampling_service and not force: | ||
return | ||
|
||
logger.debug('Initializing sampling service') | ||
sampling_service = SamplingService() | ||
sampling_service.start() | ||
|
||
|
||
async def init_async(async_event: Optional[asyncio.Event] = None): | ||
from skywalking.sampling.sampling_service import SamplingServiceAsync | ||
|
||
global sampling_service | ||
|
||
sampling_service = SamplingServiceAsync() | ||
if async_event is not None: | ||
async_event.set() | ||
task = asyncio.create_task(sampling_service.start()) | ||
sampling_service.strong_ref_set.add(task) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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 threading import Lock, Thread | ||
|
||
import time | ||
from typing import Set | ||
from skywalking import config | ||
from skywalking.log import logger | ||
|
||
import asyncio | ||
|
||
|
||
class SamplingServiceBase: | ||
|
||
def __init__(self): | ||
self.sampling_factor = 0 | ||
|
||
@property | ||
def reset_sampling_factor_interval(self) -> int: | ||
return 3 | ||
|
||
@property | ||
def on(self): | ||
return config.sample_n_per_3_secs >= 0 | ||
|
||
@property | ||
def can_sampling(self): | ||
return self.sampling_factor < config.sample_n_per_3_secs | ||
|
||
def _try_sampling(self) -> bool: | ||
if not self.on or self.can_sampling: | ||
self._incr_sampling_factor() | ||
return True | ||
logger.debug('%s try_sampling return false, sampling_factor: %d', self.__class__.__name__, self.sampling_factor) | ||
return False | ||
|
||
def _set_sampling_factor(self, val: int): | ||
logger.debug('Set sampling factor to %d', val) | ||
self.sampling_factor = val | ||
|
||
def _incr_sampling_factor(self): | ||
self.sampling_factor += 1 | ||
|
||
|
||
class SamplingService(Thread, SamplingServiceBase): | ||
|
||
def __init__(self): | ||
Thread.__init__(self, name='SamplingService', daemon=True) | ||
SamplingServiceBase.__init__(self) | ||
self.lock = Lock() | ||
|
||
def run(self): | ||
logger.debug('Started sampling service sampling_n_per_3_secs: %d', config.sample_n_per_3_secs) | ||
while True: | ||
if self.on: | ||
self.reset_sampling_factor() | ||
time.sleep(3) | ||
|
||
def try_sampling(self) -> bool: | ||
with self.lock: | ||
return super()._try_sampling() | ||
|
||
def force_sampled(self) -> None: | ||
with self.lock: | ||
super()._incr_sampling_factor() | ||
|
||
def reset_sampling_factor(self) -> None: | ||
with self.lock: | ||
super()._set_sampling_factor(0) | ||
|
||
|
||
class SamplingServiceAsync(SamplingServiceBase): | ||
|
||
def __init__(self): | ||
super().__init__() | ||
self.strong_ref_set: Set[asyncio.Task[None]] = set() | ||
|
||
async def start(self): | ||
logger.debug('Started async sampling service sampling_n_per_3_secs: %d', config.sample_n_per_3_secs) | ||
while True: | ||
if self.on: | ||
await self.reset_sampling_factor() | ||
await asyncio.sleep(self.reset_sampling_factor_interval) | ||
|
||
def try_sampling(self) -> bool: | ||
return super()._try_sampling() | ||
|
||
def force_sampled(self): | ||
super()._incr_sampling_factor() | ||
|
||
async def reset_sampling_factor(self): | ||
super()._set_sampling_factor(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
# | ||
|
||
import unittest | ||
|
||
from skywalking.sampling.sampling_service import SamplingService, SamplingServiceAsync | ||
|
||
|
||
class TestSampling(unittest.TestCase): | ||
|
||
def test_try_sampling(self): | ||
from skywalking import config | ||
|
||
config.sample_n_per_3_secs = 2 | ||
sampling_service = SamplingService() | ||
assert sampling_service.try_sampling() | ||
assert sampling_service.try_sampling() | ||
assert not sampling_service.try_sampling() | ||
|
||
def test_force_sampled(self): | ||
|
||
from skywalking import config | ||
|
||
config.sample_n_per_3_secs = 1 | ||
sampling_service = SamplingService() | ||
assert sampling_service.try_sampling() | ||
sampling_service.force_sampled() | ||
assert sampling_service.sampling_factor == 2 | ||
|
||
def test_reset_sampling_factor(self): | ||
from skywalking import config | ||
|
||
config.sample_n_per_3_secs = 1 | ||
sampling_service = SamplingService() | ||
assert sampling_service.try_sampling() | ||
assert not sampling_service.try_sampling() | ||
sampling_service.reset_sampling_factor() | ||
assert sampling_service.try_sampling() | ||
|
||
|
||
class TestSamplingAsync(unittest.IsolatedAsyncioTestCase): | ||
|
||
async def test_try_sampling(self): | ||
from skywalking import config | ||
|
||
config.sample_n_per_3_secs = 2 | ||
sampling_service = SamplingServiceAsync() | ||
assert sampling_service.try_sampling() | ||
assert sampling_service.try_sampling() | ||
assert not sampling_service.try_sampling() | ||
|
||
async def test_force_sampled(self): | ||
|
||
from skywalking import config | ||
|
||
config.sample_n_per_3_secs = 1 | ||
sampling_service = SamplingServiceAsync() | ||
assert sampling_service.try_sampling() | ||
sampling_service.force_sampled() | ||
assert sampling_service.sampling_factor == 2 | ||
|
||
async def test_reset_sampling_factor(self): | ||
from skywalking import config | ||
|
||
config.sample_n_per_3_secs = 1 | ||
sampling_service = SamplingServiceAsync() | ||
assert sampling_service.try_sampling() | ||
assert not sampling_service.try_sampling() | ||
await sampling_service.reset_sampling_factor() | ||
assert sampling_service.try_sampling() | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |