Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-27919][connectors] Add FLIP-27-based Data Generator Source. #1

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from

Conversation

afedulov
Copy link

@afedulov afedulov commented Jul 8, 2022

No description provided.

Copy link
Owner

@akalash akalash left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я оставил пару комментариев. Я все еще не уверен стоит ли добавлять currentParallelism в SourceReaderContext с одной стороны это не то чтобы проблема, но не понятно насколько это надо. В целом если это уже обсуждали, то ок.

MapFunction<Long, OUT> generatorFunction, long count, TypeInformation<OUT> typeInfo) {
this.typeInfo = checkNotNull(typeInfo);
this.generatorFunction = checkNotNull(generatorFunction);
this.numberSource = new NumberSequenceSource(0, count);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Лучше иметь только один конструктор с присвоением значений, для избежания ошибок, а остальные должны использовать this(*) с дефолтными значениями если нужно.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

поправил.

RateLimiter rateLimiter = new GuavaRateLimiter(maxPerSecond, parallelism);
return new RateLimitedSourceReader<>(
new MappingIteratorSourceReader<>(readerContext, generatorFunction),
rateLimiter);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Пока мне не понятно, как мне использовать другой RateLimiter если понадобиться. Может быть это и не особо имеет смысл, и если это уже было обсуждено то ок. Но просто как идея, возможно стоит рассмотреть передачу RateLimiter как параметра в этот класс. Т.е. вместо:

 new DataGeneratorSourceV3<>(generator, 1000, 2, Types.STRING);

будет

 new DataGeneratorSourceV3<>(generator, 1000, RateLimiters.guava(2), Types.STRING);

Хотя скорее всего это будет не сам Limiter а его билдер, т.к. ему нужно как передать readerContext. Вообщем не уверен что есть смысл так заморачиваться, но можно подумать.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я решил сделать весь генератор более extendable с возможностью factory для SourceReader's . Пользователь сможет в этой factory решить что и как инициализировать.

import org.apache.flink.shaded.guava30.com.google.common.util.concurrent.RateLimiter;

/** An implementation of {@link RateLimiter} based on Guava's RateLimiter. */
public class GuavaRateLimiter implements org.apache.flink.api.common.io.ratelimiting.RateLimiter {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Зачем тут полный путь до RateLimiter?

Copy link
Author

@afedulov afedulov Jul 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Клэш с гуавой (см import org.apache.flink.shaded.guava30.com.google.common.util.concurrent.RateLimiter)


@Override
public int acquire() {
return (int) rateLimiter.acquire();
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Кажется это не правильно, вроде как guava возвращает в секундах и если мы хотим в миллисекундах нужно :

return (int) 1000 * rateLimiter.acquire();

Но это надо проверить

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Действительно. Странный выбор с их стороны, но да ладно. Nice catch!

import static org.apache.flink.util.Preconditions.checkNotNull;

@Experimental
public class MappingIteratorSourceReader<
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Надо подумать над названием, но я бы наверное ожидал что-то более связанное с Generator чтобы было проще найти. Хотя может и без разницы.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Либо данный класс не должен принимать generatorFuntion а должен принимать что-то типа mappingFunction

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Согласен. Переименовал.

@afedulov
Copy link
Author

afedulov commented Jul 18, 2022

@akalash
Антон, еще раз спасибо за ревью. Я немного кое-что поменял, чтобы была более открытая к кастомизации имплементация. Посмотри, если не сложно, DataGeneratorSourceV4. Там, с большего, все осталось по-прежнему, но при этом некоторые открытые вопросы из предыдущего ревью должны быть закрыты. Спасибо!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants